css在html裡使用的方式有三種
第一直接在html標籤使用
<p style=""></p>
第二寫在style標籤內
<style>
</style>
第三外部引入CSS檔
<link rel="stylesheet" href="">
href裡面就是寫CSS檔案的位置
CSS選擇器
id選擇器
可以為標有id的html元素加入特定CSS,在CSS中id選擇器以"#"定義
<p>123</p>
<p id="a">123</p>
<style>
#a{
color: blueviolet;
}
</style>
class選擇器
可以為標有相同class的html元素加入CSS,在CSS中class選擇器以"."定義
<p >123</p>
<p class="a">123</p>
<p class="a">123</p>
<style>
.a{
color: aqua;
}
</style>